在WORD中如何对齐序号?[电脑知识题]

来源:百度知道 编辑:UC知道 时间:2024/06/06 00:31:56
例子见问题补充;本问题与英语知识无关。(请高手帮助!高分悬赏!急!)
如何将下面的英文中的A) B) C) D)选项全部对齐?
1. A) All the passengers were killed.
B) The plane crashed in the night.
C) No more survivors have been found.
D) It’s too late to search for survivors.
2. A) Its results were just as expected.
B) It wasn’t very well designed.
C) It fully reflected the students’ ability.
D) Its results fell short of her expectations.
3. A) He believes dancing is enjoyable.
B) He definitely does not like dancing.
C) He admires those who dance.
D) He won’t dance until he has done his work.
4. A) His computer doesn’t work well.
B) He isn’t getting along with his staff.
C) He didn’t register for a proper course.
D) He can’t apply the theory to his program.
5. A) Reading on the campus lawn.
B) Depositing money in the bank.
C) Applying for financial aid.
D) Reviewing a student’s application.
6. A) A new shuttle bus. <

最简单方法:

查找: B)
替换: 空空B)
(即在B前加两个空格),替换所有。
同样处理“C)、D)”,这样BCD就和A对齐了。

对齐其实可以有个很简单的办法,不用太深奥的。

^_^

楼主,比如:

1、A)
2、B)

这样的话,

你把鼠标移动在要对齐的那一行,然后按“空格键”向后移动了,直到与上面对齐,这样不就行了?

在格式 一行里有 两端对齐 居中 等有个编号什么的你试试

格式->制表位,输入你需要空的距离。换行之后按“Tab”键,光标就会和上一行对齐。

用Word里格式刷好像可以哦

在WORD里面创建一个宏可以解决这个问题,方法如下:
1 工具----宏----宏---创建;
2 将以下代码粘贴进去

Sub Macro1()
'
' Macro1 Macro
' 宏在 2008-2-16 由 jet 录制
'
Selection.MoveDown Unit:=wdLine, Count:=1
Selection.TypeText Text:=" "
Selection.MoveDown Unit:=wdLine, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=2
Selection.TypeText Text:=" "
Selection.MoveDown Unit:=wdLine, Count:=1
Selection.MoveLeft Unit:=wdCharacter, Count:=2
Selection.TypeText Text:=" "
For i = 1 To n
Selecti